1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
import React from "react";
import { ActivityIndicator, FlatList, Pressable, View } from "react-native";
import Checkbox from "expo-checkbox";
import { useLocalSearchParams } from "expo-router";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
import { Text } from "@/components/ui/Text";
import { useToast } from "@/components/ui/Toast";
import { useQuery } from "@tanstack/react-query";
import type { ZBookmarkList } from "@karakeep/shared/types/lists";
import {
useAddBookmarkToList,
useBookmarkLists,
useRemoveBookmarkFromList,
} from "@karakeep/shared-react/hooks/lists";
import { useTRPC } from "@karakeep/shared-react/trpc";
const ListPickerPage = () => {
const api = useTRPC();
const { slug: bookmarkId } = useLocalSearchParams();
if (typeof bookmarkId !== "string") {
throw new Error("Unexpected param type");
}
const { toast } = useToast();
const onError = () => {
toast({
message: "Something went wrong",
variant: "destructive",
showProgress: false,
});
};
const { data: existingLists } = useQuery(
api.lists.getListsOfBookmark.queryOptions(
{
bookmarkId,
},
{
select: (data: { lists: ZBookmarkList[] }) =>
new Set(data.lists.map((l) => l.id)),
},
),
);
const { data } = useBookmarkLists();
const {
mutate: addToList,
isPending: isAddingToList,
variables: addVariables,
} = useAddBookmarkToList({
onSuccess: () => {
toast({
message: `The bookmark has been added to the list!`,
showProgress: false,
});
},
onError,
});
const {
mutate: removeToList,
isPending: isRemovingFromList,
variables: removeVariables,
} = useRemoveBookmarkFromList({
onSuccess: () => {
toast({
message: `The bookmark has been removed from the list!`,
showProgress: false,
});
},
onError,
});
const toggleList = (listId: string) => {
if (!existingLists) {
return;
}
if (existingLists.has(listId)) {
removeToList({ bookmarkId, listId });
} else {
addToList({ bookmarkId, listId });
}
};
const isListLoading = (listId: string) => {
return (
(isAddingToList && addVariables?.listId === listId) ||
(isRemovingFromList && removeVariables?.listId === listId)
);
};
const { allPaths } = data ?? {};
// Filter out lists where user is a viewer (can't add/remove bookmarks)
const filteredPaths = allPaths?.filter(
(path) => path[path.length - 1].userRole !== "viewer",
);
return (
<CustomSafeAreaView>
<FlatList
className="h-full"
contentContainerStyle={{
gap: 6,
}}
renderItem={(l) => {
const listId = l.item[l.item.length - 1].id;
const isLoading = isListLoading(listId);
const isChecked = existingLists && existingLists.has(listId);
return (
<View className="mx-2 flex flex-row items-center rounded-xl bg-card px-4 py-2">
<Pressable
key={listId}
onPress={() => !isLoading && toggleList(listId)}
disabled={isLoading}
className="flex w-full flex-row items-center justify-between"
>
<Text className="shrink">
{l.item
.map((item) => `${item.icon} ${item.name}`)
.join(" / ")}
</Text>
{isLoading ? (
<ActivityIndicator size="small" />
) : (
<Checkbox
value={isChecked}
onValueChange={() => {
toggleList(listId);
}}
disabled={isLoading}
/>
)}
</Pressable>
</View>
);
}}
data={filteredPaths}
/>
</CustomSafeAreaView>
);
};
export default ListPickerPage;
|